home *** CD-ROM | disk | FTP | other *** search
- on(release){
- if(_root.money >= 1000 && _root.gotTower != 1)
- {
- _root.gotTower = 1;
- _root.tower._visible = true;
- messo = "Got 150 Hp and 70 Mana!";
- _root.money -= 1000;
- _root.castleMaxHp += 210;
- }
- else if(_root.gotTower == 1)
- {
- messo = "Already have it!";
- }
- else
- {
- messo = "Not enough money!";
- }
- }
-